home *** CD-ROM | disk | FTP | other *** search
/ PD ROM 1 / PD ROM Volume I - Macintosh Software from BMUG (1988).iso / Electronic Messages / Delphi Digests / Delphi Vol. 3 / Delphi 3.48 < prev    next >
Encoding:
Internet Message Format  |  1988-04-08  |  21.1 KB  |  [TEXT/ttxt]

  1. Date: Sun 1 Nov 87 08:27:20-GMT
  2. From: Jeff Shulman <SHULMAN@SDR>
  3. Subject: Delphi Mac Digest V3 #48
  4.  
  5. Delphi Mac Digest     Saturday, October 31, 1987     Volume 3 : Issue 48 
  6.  
  7. Today's Topics:
  8.      Previous Card. (4 messages)
  9.      re INIT 31 should be enhanced!
  10.      re: Hypercard
  11.      re: Re: Missing deactivate events
  12.      re: Re: editing default window size
  13.      Radio Interference in H20 Town.
  14.      RE: setting screen depth (2 messages)
  15.      MacWrite 4.6 (2 messages)
  16.      color paint ? (4 messages)
  17.      MIDI & Mac II
  18.      RE: MultiFinder
  19.      re: Mac II Crash
  20.      re: Re: YAHQ (Yet Another Hypercard Ques
  21.      Playing Card Software
  22.      re: Password protection
  23.      MacBottom Hard disks
  24.      LaserWriter Distortion (3 messages)
  25.      Blessed folder... (2 messages)
  26.      RE: INFO-MAC Digest V5 #125 (3 messages)
  27.      Laser (2 messages)
  28.      MacDraw page limit
  29.      reRe: International Mac Software Transfe
  30.      TickCount?
  31.  
  32. ---------------------------------------------------------------------- 
  33.  
  34. From: NATURAL
  35. Subject: Previous Card.
  36. Date: 17-OCT 19:49 Creative Pursuits
  37.  
  38. Is there anyway to stop the go previous card option from going to
  39. another back- ground when it reaches the end?
  40.  
  41. tx.
  42.  
  43. ------------------------------
  44.  
  45. From: CHUQ
  46. Subject: RE: Previous Card. (Re: Msg 22898)
  47. Date: 17-OCT 20:50 Creative Pursuits
  48.  
  49. No. I've found in the stack I'm working on that if you're doing multiple
  50. backgrounds that are modal, you basically have to turn off the
  51. clover-{1234} commands and most of the menu. It doesn[t deal well with
  52. modality.
  53.  
  54. sigh. What I want to do is find a way to grab those and turn them to my
  55. advantage. My definition of next, for instance. Any ideas?
  56.  
  57. chuq
  58.  
  59. ------------------------------
  60.  
  61. From: STEVEMALLER
  62. Subject: RE: Previous Card. (Re: Msg 22898)
  63. Date: 18-OCT 16:14 Creative Pursuits
  64.  
  65. Josh
  66.  
  67. There is no _automatic_ means for that, but it's not hard to cook up a
  68. kludge to make it work. For example, you can do something like this:
  69. (UNTESTED)
  70.  
  71.     set lockscreen to true
  72.  go previous
  73.     if the bkgnd id is not 1 -- or whatever
  74.       go back
  75.     end if
  76.     set lockscreen to false
  77.  
  78. See?
  79.  
  80.      Steve Maller
  81.      Apple Computer
  82.  
  83. ------------------------------
  84.  
  85. From: STEVEMALLER
  86. Subject: RE: Previous Card. (Re: Msg 23110)
  87. Date: 28-OCT 11:45 Creative Pursuits
  88.  
  89. Josh,
  90.  
  91. I tried this script, and it works just fine. Exactly WHAT are you doing?
  92. Why don't you post YOUR script and we'll compare...
  93.  
  94.   on mouseUp
  95.     global numCards, firstBG, firstID
  96.     put 1 into numCards
  97.     put the ID of this card into firstID
  98.     put the ID of this bkgnd into firstBG
  99.     set lockscreen to true
  100.     go next
  101.     repeat until the ID of this card is firstID
  102.       if the ID of this bkgnd is firstBG then
  103.         add 1 to numCards
  104.         put numCards
  105.       end if
  106.       go next
  107.     end repeat
  108.     set lockscreen to false
  109.     put numCards && "cards in background ID" && firstBG
  110.   end mouseUp
  111.  
  112. Ciao,
  113.      Steve Maller
  114.      Apple Computer
  115.  
  116. ------------------------------
  117.  
  118. From: DDUNHAM
  119. Subject: re INIT 31 should be enhanced! (Re: Msg 22879)
  120. Date: 17-OCT 20:59 Network Digests
  121.  
  122.  > From: chow@batcomputer.tn.cornell.edu (Christopher Chow)
  123.  > Subject: INIT 31 should be enhanced!
  124.  
  125. I know at least one person is writing an INIT which handles what yoou
  126. ask for. (It works when you hold the space bar at boot.)
  127.  
  128. ------------------------------
  129.  
  130. From: DDUNHAM
  131. Subject: re: Hypercard (Re: Msg 22880)
  132. Date: 17-OCT 20:59 Network Digests
  133.  
  134.  > From: chuq%plaid@Sun.COM (Chuq Von Rospach)
  135.  > Subject: Hypercard
  136.  
  137. Why not put an "on newCard" handler in your stack?
  138.  
  139. ------------------------------
  140.  
  141. From: DDUNHAM
  142. Subject: re: Re: Missing deactivate events (Re: Msg 22881)
  143. Date: 17-OCT 21:00 Network Digests
  144.  
  145.  > From: brian@ut-sally.UUCP (Brian H. Powell)
  146.  > Subject: Re: Missing deactivate events
  147.  
  148. How can you even _think_ of not allowing DAs?  As I write this, they're
  149. the only way I can multitask.  (And, unlike MultiFinder programs, they
  150. keep running in the background.)  All religious issues aside, you can't
  151. prevent them, unless you prevent FKEYs as well, cos I'm just gonna use
  152. Lofty Becker's DA Key and run DAs anyway.
  153.  
  154. Umm, how is a DA without a window ever going to give your application a
  155. deactivate event?
  156.  
  157. ------------------------------
  158.  
  159. From: DDUNHAM
  160. Subject: re: Re: editing default window size (Re: Msg 22881)
  161. Date: 17-OCT 21:01 Network Digests
  162.  
  163.  > From: gardner@prls.UUCP (Robert Gardner)
  164.  > Subject: Re: editing default window size
  165.  
  166. I suggested something similar to your idea of a new resource, but nobody
  167. seemed to do anything with it.  (Programs that derive window size from
  168. the screen are almost always wrong, in my opinion:  the screen of big
  169. monitors is almost always wider than I want my windows.)
  170.  
  171. (I am basically opposed to the idea of saving window coordinates with
  172. documents.  Windows are just, well, windows on documents. In some
  173. instances, I only need a small window to see certain info, other times
  174. I'm editing the document and need it big. Saving the small [read-only]
  175. size would be a major frustration.)
  176.  
  177. ------------------------------
  178.  
  179. From: NATURAL
  180. Subject: Radio Interference in H20 Town.
  181. Date: 18-OCT 00:44 Hardware & Peripherals
  182.  
  183. Peter...
  184.  
  185. My novation is on the major fritz again.  the modem that is.  It's
  186. picking up serious interference from that radio station in Waltham,
  187. better than my own stereo (ok, almost).  Anyway, I was wondering if you
  188. were having any kind of similar experience, which I doubt.
  189.  
  190. These novation modems really bite the big one.  It's too bad 'cause it
  191. really could've been the best.
  192.  
  193. I guess I'm going to have to send it out there again....
  194.  
  195. Josh
  196.  
  197. (Anyone else have one of these babies?)
  198.  
  199. ------------------------------
  200.  
  201. From: JOSEF
  202. Subject: RE: setting screen depth (Re: Msg 2110)
  203. Date: 18-OCT 03:03 Programming Techniques
  204.  
  205. I'm afraid even CopyBits would be far too slow for what I'm trying to
  206. do, but it's an idea, and I'll have to take a closer look before ruling
  207. it out. Yes, i have played with the Monitors cdev, but you see, I wasn't
  208. planning on letting the screen get updated before I do my drawing. I
  209. just want to do whatever QuickDraw does when writing to a window defined
  210. by a BitMap instead of a PixelMap, regardless of screen depth setting.
  211.  
  212. I know direct screen access is rapidly becoming(if it wasn't already) a
  213. big nono. But I really hate to give up this feature I'm trying to add
  214. just cuz someone has a color monitor.
  215.  
  216. Joe Sensendorf Farallon computing
  217.  
  218. ------------------------------
  219.  
  220. From: FRACTAL
  221. Subject: RE: setting screen depth (Re: Msg 2111)
  222. Date: 20-OCT 00:07 Programming Techniques
  223.  
  224.    I have done some direct screen access on the Mac II, and can point
  225. out what is involved. Under MultiFinder there is no assurance that the
  226. window you are drawing to is on top and therefore your code _must_
  227. process the visRgn of the window. This is doable, but Apple make life
  228. more difficult by still not documenting the rather simple and basic data
  229. structure.
  230.    The Mac II supports multiple screens, which may be set to different
  231. pixel depths. Each screen has a gDevice record associated with it which
  232. tells the pixel depth, the logical coordinates of the screen, and gives
  233. a PixMap that has the hardware address to draw to. You have to clip your
  234. screen drawing  each gDevice and then do something different based on
  235. each screen's pixel depth (while still processing the visRgn mentioned
  236. above so you don't clobber the image of another window on top of you.
  237.    The proram I worked on (ImageStudio), assumes only one screen and
  238. therefore is not really correct (we may fix that in a later release),
  239. but it does all the rest of the stuff, interprets regions and loads the
  240. pixel depth from the gDevice. To the question of is it worth it, the
  241. answer is yes!!! It's a lot faster than Apple's code (5X for what the
  242. program does). It works with MultiFinder as well, subject to the
  243. program's windows being confined to the menubar screen.
  244.    There is one more difficulty for MultiFinder, the Palette Manager.
  245. This piece of code tries to hide the hardware pixel values you store
  246. into the video RAM from the program so that multiple programs can exists
  247. under MultiFinder. Apple makes life difficult again by not providing a
  248. Palette Manager call to return the hardware index that it has computed
  249. for a given color in the palette (note further that there is a separate
  250. one for each of the screens). It is possible to get around this by
  251. loading the index out of the grafport after setting both the global
  252. gDevice and the palette manager color after every time another program
  253. gets control.
  254.     Tom Hedges, Fractal Software
  255.  
  256. ------------------------------
  257.  
  258. From: MACENGLISH
  259. Subject: MacWrite 4.6
  260. Date: 19-OCT 19:27 User Supported Software
  261.  
  262. Steve,
  263.  
  264. I'm mad at Apple right now.  I don't know if I should be; you tell me. 
  265. For months now all the magazines have said that MacWrite 4.6 is the
  266. latest version.
  267.  
  268.  So why don't any of the dealers have it?  I went into my Muncie dealer.
  269. She kept my disk for three weeks, and finally said Apple hasn't sent
  270. out the upgrade yet.  I called another dealer who said he thought 4.5
  271. was the latest version.
  272.  
  273. Why is Apple keeping dealers in the dark?  Why has Apple updated a
  274. product, but not sent it to dealers?  I've heard it's not much of an
  275. upgrade anyway, but still . . .
  276.  
  277. Debbie
  278.  
  279. ------------------------------
  280.  
  281. From: STEVEMALLER
  282. Subject: RE: MacWrite 4.6 (Re: Msg 22944)
  283. Date: 20-OCT 00:18 User Supported Software
  284.  
  285. Debbie,   (I love your "handle"!)
  286.  
  287. I think you should insist on seeing the store manager. If this is an
  288. authorized
  289.  
  290. Apple Dealer and they are making claims that there is no such thing as
  291. MacWrite
  292.  
  293. 4.6 then you should do one of the following:
  294.     1) Look for another dealer.
  295.     2) Call Apple in Cupertino and ask for "Dealer Relations" (I think).
  296.        Register your complaint and ask if there is another dealer in
  297.        your area. (408)996-1010. I think Dealer relations is the right one.
  298.        Or is it Customer Relations? Hmm. Can't remember. Actually,
  299.        it IS Customer Relations. (408)973-2222 is the direct #...
  300.  
  301. Good luck,
  302.      Steve Maller
  303.      Apple Computer
  304.  
  305. ------------------------------
  306.  
  307. From: ROWLAND
  308. Subject: color paint ?
  309. Date: 20-OCT 19:04 Mousing Around
  310.  
  311. Is there a color paint program for the MacII yet ? I thought I saw an
  312. announcement for one recently, but now I can't find it.  One company at
  313. least at the show (MacWorld in Aug) was claiming 30 days to ship, but
  314. I've heard nothing.
  315.  
  316. Mike Burns
  317.  
  318. ------------------------------
  319.  
  320. From: FRACTAL
  321. Subject: RE: color paint ? (Re: Msg 22952)
  322. Date: 21-OCT 01:08 Mousing Around
  323.  
  324.     Supermac showed something called Pixel paint at Boston MacWorld.
  325. According to InfoWorld they may have to change its name and are supposed
  326. to ship in November. I got a demo from the developers at the show and it
  327. was pretty impressive.
  328.     Tom Hedges, Fractal Software
  329.  
  330. ------------------------------
  331.  
  332. From: BMUG
  333. Subject: RE: color paint ? (Re: Msg 22952)
  334. Date: 21-OCT 03:10 Mousing Around
  335.  
  336. Mike -
  337.  
  338. Tom didn't even mention the GREAT program that he co-authored, Image
  339. Studio from LetraSet.  It is HOT, and allows incredible stuff with grey
  340. levels and colors on the Mac II.  Amazing detail.
  341.  
  342. -- Raines Cohen / BMUG
  343.  
  344. ------------------------------
  345.  
  346. From: FRACTAL
  347. Subject: RE: color paint ? (Re: Msg 22969)
  348. Date: 23-OCT 03:59 Mousing Around
  349.  
  350.    Thanks for the kudos. Letraset views ImageStudio as an Image Retouching
  351. program, not a 'Paint Program', but actually you can do some very neat
  352. paint-type things with it. If you patch the 'clut' resource in the settings
  353. file you can even get limited color out of it (but that is not an offical
  354. feature). It is in duplication now and should be shipping around Halloween.
  355.     Tom Hedges, Fractal Software
  356.  
  357. ------------------------------
  358.  
  359. From: DDUNHAM
  360. Subject: MIDI & Mac II
  361. Date: 21-OCT 21:58 Creative Pursuits
  362.  
  363. Does anyone know of any MIDI programs that work on the Mac II?  I'd kind of
  364. like a sequencer that makes up for my crummy playing ability.
  365.  
  366. ------------------------------
  367.  
  368. From: DWB
  369. Subject: RE: MultiFinder (Re: Msg 22975)
  370. Date: 22-OCT 03:27 Business Mac
  371.  
  372. One important thing is to stress that folks really should do the install with
  373. installer, not just by copying system files.  Saves effort, because you don't
  374. have to reinstall da's, etc.  Also saves space because only the necessary
  375. patches get put in.  Also makes things work right because you don't wind up
  376. with a Plus trying to run patches which are intended for an SE. Don't know how
  377. much problem the last would cause, but it's possible it could be considerable.
  378.  
  379. David
  380.  
  381. ------------------------------
  382.  
  383. From: DDUNHAM
  384. Subject: re: Mac II Crash (Re: Msg 22979)
  385. Date: 23-OCT 01:48 Network Digests
  386.  
  387.  > From: gdavis@rhesus.primate.wisc.edu (Gary Davis)
  388.  > Subject: Mac II Crash
  389.  > Instead, when I clicked Restart  Acta threw up a Save dialog
  390.  > and successfully saved my file before the Mac rebooted.
  391.  
  392. It's an Acta feature that lets you save your work whenever you quit an
  393. application without first closing Acta.  In technical DA terms, this is called
  394. handling goodbye kisses.  System 4.1 does a much nicer job of shutting down and
  395. restarting, and gives Acta the goodbye kiss.
  396.  
  397. This is one advantage of DAs (the ability to save info after another program
  398. bombs) that may be lacking from MultiFinder.  (But note that not all DAs handle
  399. goodbye kisses.)
  400.  
  401. ------------------------------
  402.  
  403. From: DDUNHAM
  404. Subject: re: Re: YAHQ (Yet Another Hypercard Ques (Re: Msg 22980)
  405. Date: 23-OCT 01:48 Network Digests
  406.  
  407.  > From: steele@unc.cs.unc.edu (Oliver Steele)
  408.  > Subject: Re: YAHQ (Yet Another Hypercard Question)
  409.  > if you'd wanted to convert a PICT (picture) or TEXT into an ICON you'd be
  410.  > in for some trouble.
  411.  
  412. Not true for PICTs; just open a new ICON and Paste.
  413.  
  414. In fact, this is how I convert ICN#s to ICONs.  If you shift-drag around an
  415. ICN# (or ICON) and Copy, you get a PICT on the clipboard.
  416.  
  417.  David Dunham     "If voting could change the system, it would be illegal.  If
  418.  Maitreya Design   not voting could change the system, it would be be illegal."
  419.  
  420. ------------------------------
  421.  
  422. From: FRACTAL
  423. Subject: Playing Card Software
  424. Date: 23-OCT 03:55 Programming
  425.  
  426.    I am working on porting a Hearts game I wrote 8 years ago to the mac. It was
  427. originally written for a glass TTY on a minicomputer so all the strategy and
  428. score keeping is there but no graphical interface. I have trouble motivating to
  429. do the playing card output stuff, given that it has been done by many others in
  430. public domain and shareware card games. I intend to make this a public domain
  431. program, no even shareware so there is no money issue involved. The program has
  432. been ported to LightSpeed C using its glass TTY emulator and it works quite
  433. well. If anyone is interested in sharing code and resources for playing card
  434. output that would work with Hearts, please let me know. C code is needed, not
  435. PASCAL, it might even be made into a DA instead of an application, although it
  436. would be 40 or 50K.
  437.    BTW, the program plays a mean game of Hearts, shooting the moon, dumping the
  438. queen on the leader. It was written to play any number of computer hands in a 4
  439. hand Hearts game, with the rest played by humans. It might be possible to write
  440. an AppleTalk version that lets 2 or 3 human players complete with 1 or 2
  441. computer players, but the first version will be 1 human versus three separate
  442. computer players. The computer players assume perfect memory of cards played,
  443. but they don't 'cheat' -- look at the other player's hidden cards.
  444.     Tom Hedges, Fractal Software
  445.  
  446. ------------------------------
  447.  
  448. From: DDUNHAM
  449. Subject: re: Password protection (Re: Msg 23009)
  450. Date: 23-OCT 23:12 Network Digests
  451.  
  452.  >From: FALK%NORUNIT.BITNET@wiscvm.wisc.edu
  453.  >Subject: Password protection
  454.  Don't look too hard, because an INIT can be easily defeated by booting from a
  455. floppy.  Protection would probably have to be built in to the driver (as in the
  456. reviled Hyperdrive).
  457.  
  458.  David Dunham     "If voting could change the system, it would be illegal.  If
  459.  Maitreya Design   not voting could change the system, it would be be illegal."
  460.  
  461. ------------------------------
  462.  
  463. From: MACENGLISH
  464. Subject: MacBottom Hard disks
  465. Date: 24-OCT 21:02 Hardware & Peripherals
  466.  
  467.  
  468. Has anyone heard of reliability problems with MacBottom Hard disks, especially
  469. the new HD21 Series?
  470.  
  471. Debbie
  472.  
  473. ------------------------------
  474.  
  475. From: NATURAL
  476. Subject: LaserWriter Distortion
  477. Date: 25-OCT 18:07 Hardware & Peripherals
  478.  
  479. I can't believe we're the only one to have this problem so I figured I'd check
  480. here...
  481.  
  482. When printing on a laserWriter on an 11x17 size in MacDraw (not single sheet,
  483. to 8.5x11's) the LaserWriter somehow distorts the pages.  In other words, if
  484. you were to set the drawing size to 2 8.5x11 sheets of paper and drew a box
  485. that spanned both pages and then printed it, if you put the hardcopies
  486. together, they don't match.  Does anyone have a clue on why this might be?
  487.  
  488. Could it be MacDraw or the printer itself?  We've been 'dealing with it' at
  489. work for more than a year and BusinessLand says it software.  Who knows?
  490.  
  491. Help.
  492.  
  493. ------------------------------
  494.  
  495. From: PEABO
  496. Subject: RE: LaserWriter Distortion (Re: Msg 23069)
  497. Date: 25-OCT 20:59 Hardware & Peripherals
  498.  
  499. Can you describe exactly how they don't match?
  500.  
  501. peter
  502.  
  503. ------------------------------
  504.  
  505. From: NATURAL
  506. Subject: RE: LaserWriter Distortion (Re: Msg 23072)
  507. Date: 26-OCT 09:22 Hardware & Peripherals
  508.  
  509. Sure...
  510.  
  511. One side is lower that the other, so if you were to tape the paper side to
  512. side, you wouldn't have a perfect square.
  513.  
  514. ------------------------------
  515.  
  516. From: HALL
  517. Subject: Blessed folder...
  518. Date: 27-OCT 11:37 Programming
  519.  
  520. I'm sure this has been covered before, but...
  521. Is there any way to change which folder is the blessed folder?  Specifically,
  522. is there any way to switch back and forth between two Systems on a hard disk?
  523.  
  524. Thanks,
  525. Brian
  526.  
  527. ------------------------------
  528.  
  529. From: PEABO
  530. Subject: RE: Blessed folder... (Re: Msg 23091)
  531. Date: 27-OCT 12:14 Programming
  532.  
  533. Select both the System and Finder at once, move them out of the folder and back
  534. into it, and that will bless the folder.
  535.  
  536. peter
  537.  
  538. ------------------------------
  539.  
  540. From: MACWEEKBOS
  541. Subject: RE: INFO-MAC Digest V5 #125 (Re: Msg 22786)
  542. Date: 27-OCT 13:23 Network Digests
  543.  
  544. to: Mark Richer <RICHER@SUMEX-AIM.STANFORD.EDU>
  545. Subject: computer insurance
  546.  
  547. I concluded from the incredibly bad responsiveness to simple inquiries made
  548. to Safeware that it would be a poor idea to insure my equipment with them.
  549.  
  550. Ric Ford
  551.  
  552. "Opinions expressed here are my own and not those of MacWEEK, Inc."
  553.  
  554. ------------------------------
  555.  
  556. From: PDIB
  557. Subject: RE: INFO-MAC Digest V5 #125 (Re: Msg 23100)
  558. Date: 27-OCT 19:49 Network Digests
  559.  
  560. I'm insured with Safeware.  I called the local Better Business Bureau and was
  561. told that no complaints had been lodged against the firm in the several years
  562. that they've been in business.  I've had their flier for several years and
  563. finally decided to go with the firm.  My experience with them has been the
  564. opposite of yours.
  565.  
  566. ------------------------------
  567.  
  568. From: MACWEEKBOS
  569. Subject: RE: INFO-MAC Digest V5 #125 (Re: Msg 23105)
  570. Date: 27-OCT 21:30 Network Digests
  571.  
  572. The Better Business Bureau check should be a good indication, but I
  573. 'd like to hear from someone who has tried to get payment on a loss...
  574.  
  575. Ric
  576.  
  577. ------------------------------
  578.  
  579. From: SWEET
  580. Subject: Laser
  581. Date: 27-OCT 22:10 Hardware & Peripherals
  582.  
  583. Hi all. Is there a way on the Laserwriter's Test print out to tell which
  584. version of the Roms are in it? What is the new version's number? Thanks to all.
  585.  
  586. Chuck....."Sweet"
  587.  
  588. ------------------------------
  589.  
  590. From: PEABO
  591. Subject: RE: Laser (Re: Msg 23111)
  592. Date: 27-OCT 22:33 Hardware & Peripherals
  593.  
  594. The ROM version number is printed in the bottom left corner of the top left
  595. graph.  The new ROMs are version number 3.0.
  596.  
  597. peter
  598.  
  599. ------------------------------
  600.  
  601. From: HOFFMAN
  602. Subject: MacDraw page limit
  603. Date: 27-OCT 22:50 Bugs & Features
  604.  
  605. I discovered that, when I was trying to print a 24-page document with MacDraw,
  606. it printed the first 10 pages, then decided it was done.  In order to print the
  607. rest, I had to delete the 10 that were printed.  It then printed the next 10,
  608. and so on.
  609.  
  610. I am using the current version- 1.95, and current System and Finder, and
  611. LaserWriter driver 4.0.
  612.  
  613. Any ideas?
  614.  
  615. ------------------------------
  616.  
  617. From: DDUNHAM
  618. Subject: reRe: International Mac Software Transfe (Re: Msg 23080)
  619. Date: 28-OCT 01:42 Network Digests
  620.  
  621.  > From: norbert%germany.csnet@RELAY.CS.NET
  622.  > Subject: Re: International Mac Software Transfer
  623.  > someone mentioned a SmartQuotes DA
  624.  I invented "smart quotes" so that you could type naturally, and the Mac would
  625. curve the quotes correctly without you having to worry if they were open or
  626. closed.  I've wanted to know about internationalizing this, but haven't been
  627. able to find out the natural way a German types quotes.  I'd like to find out
  628. (my knowledge of German does not extend to using a German typewriter).
  629.  
  630. A French user did hack up Acta or miniWRITER so it would generate French quotes
  631. (<< or >>) when he typed the (US) typewriter quote (").  Again, I'm not sure
  632. this would be the natural way to type (probably depends on how Apple did the
  633. keyboard layout).
  634.  
  635.  David Dunham     "If voting could change the system, it would be illegal.  If
  636.  Maitreya Design   not voting could change the system, it would be be illegal."
  637.  
  638. ------------------------------
  639.  
  640. From: INTECO
  641. Subject: TickCount?
  642. Date: 29-OCT 20:22 Programming Techniques
  643.  
  644. Why is TickCount banned for not being used while an interrupt is on?
  645.  
  646. Just because it is not updated? I do not think that imes or purges memory...
  647.  
  648. Uwe
  649.  
  650. ------------------------------
  651.  
  652. End of Delphi Mac Digest
  653. ************************
  654.